home *** CD-ROM | disk | FTP | other *** search
/ Exploring Where & Why / Exploring Where & Why.iso / pc / Lib.cst / 00087_DirectionEightSprite.ls < prev    next >
Encoding:
Text File  |  2004-07-11  |  5.7 KB  |  201 lines

  1. --
  2. -- DirectionSprite
  3. --
  4.  
  5. property ancestor
  6.  
  7. -- constants:
  8. property dragTopSpriteColor  -- the spriteColor of the dragging sprite - for setup
  9. property dragUnderSpriteColor
  10.  
  11. property dragTopSprite  -- the spriteNumber of the dragging sprite
  12. property dragUnderSprite  -- the sprite that drags under the cursor to find intersecting sprites.
  13. property hiliteSprite  -- the sprite that will do the rollover hiliting
  14.  
  15. property hiliteList  -- a list of hilitable sprites.  They hilite when the dragger is over them.
  16. property void  -- never initialize this.
  17. property baseCastlib
  18. property showDirectionFlag  -- allow visual changes of direction if true
  19.  
  20.  
  21. on new me
  22.   -- set constants:
  23.   set dragTopSpriteColor = 5  -- red
  24.   set dragUnderSpriteColor = 4  -- pink
  25.   
  26.   -- initialize the ancestor:
  27.   set ancestor = new (script "SinglePointPusher")
  28.   
  29.   -- do other initializations:
  30.   setUp (me)
  31.   set showDirectionFlag = TRUE
  32.   
  33.   set hiliteList = []
  34.   return me
  35. end
  36.  
  37.  
  38. on destruct me
  39.   if objectP (ancestor) then destruct (ancestor)
  40.   set ancestor = 0
  41. end
  42.  
  43.  
  44.  
  45. -- don't allow a visual change of direction:
  46.  
  47. on showDirectionOff me
  48.   set showDirectionFlag = FALSe
  49. end
  50.  
  51.  
  52. on move me, spr, direction
  53.   
  54.   if voidP (baseCastLib) then set baseCastLib = the name of castLib the castLibNum of sprite spr
  55.   
  56.   puppetSprite spr, TRUE
  57.   
  58.   if showDirectionFlag then
  59.     case (direction) of 
  60.       #up : set the castLibNum of sprite spr to the number of castLib baseCastLib
  61.       #down:  set the castLibNum of sprite spr to the number of castLib (baseCastLib & "2")
  62.       #right: set the castLibNum of sprite spr to the number of castLib (baseCastLib & "3")
  63.       #left:  set the castLibNum of sprite spr to the number of castLib (baseCastLib & "4")
  64.       otherwise return
  65.     end case
  66.   end if
  67.   
  68.   
  69.   if dragTopSprite then 
  70.     set the memberNum of sprite dragTopSprite to the memberNum of sprite spr
  71.     set the castLibNum of sprite dragTopSprite to the castLibNum of sprite spr
  72.     set the loc of sprite dragTopSprite to the loc of sprite spr
  73.     updateStage
  74.   end if
  75.   
  76.   moveOffScreen (me, spr)
  77.   
  78.   if dragUnderSprite then
  79.     puppetSprite dragUnderSprite, TRUE
  80.     set the member of sprite dragUnderSprite to member "underCursor"
  81.     set the loc of sprite dragUnderSprite to the loc of sprite dragTopSprite
  82.   end if
  83.   
  84.   moveDirection (me, spr, direction) -- do the actual motion.
  85.   
  86.   if dragTopSprite then set tmpLoc = the loc of sprite dragTopSprite
  87.   
  88.   -- this was to return the location of the drag under sprite, currently we return the sprite number itself.
  89.   --  if dragUnderSprite then set endLoc = the loc of sprite dragUnderSprite
  90.   --  else set endLoc = void
  91.   
  92.   if dragTopSprite then moveOffScreen (me, dragTopSprite)
  93.   
  94.   set the loc of sprite spr to tmpLoc  -- move original spr back onscreen.
  95.   updateStage
  96.   
  97.   if dragUnderSprite then return dragUnderSprite
  98.   else return void
  99. end
  100.  
  101.  
  102. -- drag the passed sprite
  103.  
  104. on moveDirection me, spr, direction
  105.   
  106.   set startCast = the name of castLib the castLibNum of sprite spr
  107.   set betweenCast = startCast && "betweens"
  108.   set moveNum = 1
  109.   
  110.   repeat while the mouseDown
  111.     case (direction) of 
  112.       #up :   set sprOffSet = point (0,-5)
  113.       #down:  set sprOffSet = point (0,5)
  114.       #right: set sprOffSet = point (5,0)
  115.       #left:  set sprOffSet = point (-5,0)
  116.       #upleft: set sprOffSet = point (-5,-5)
  117.       #downleft: set sprOffSet = point (-5,5)
  118.       #downright: set sprOffSet = point (5,5)
  119.       #upright: set sprOffSet = point (5,-5)
  120.       otherwise return
  121.     end case
  122.     
  123.     set the loc of sprite dragUnderSprite = the loc of sprite dragUnderSprite + sprOffSet
  124.     updateStage
  125.     
  126.     if  checkSpriteIntersect (me, spr) then
  127.       -- if we colide with a bad target, then don't allow the move
  128.       set the loc of sprite dragUnderSprite = the loc of sprite dragUnderSprite - sprOffSet
  129.       -- beep
  130.       exit repeat
  131.     else
  132.       -- otherwise move the main sprite to match the new location of the test sprite:
  133.       set the loc of sprite dragTopSprite = the loc of sprite dragTopSprite + sprOffSet
  134.       if (moveNum mod 3) = 0 then
  135.         if the name of castLib the castLibNum of sprite dragTopSprite = startCast then 
  136.           set the castLibNum of sprite dragTopSprite to the number of castLib betweenCast
  137.         else set the castLibNum of sprite dragTopSprite to the number of castLib startCast
  138.       end if
  139.       set moveNum = moveNum + 1
  140.     end if
  141.     updateStage
  142.   end repeat
  143. end
  144.  
  145.  
  146. --finally ditch the dragUnderSprite:
  147.  
  148. on hideUnderSprite me
  149.   if not dragUnderSprite then return
  150.   moveOffScreen (me, dragUnderSprite)
  151. end
  152.  
  153.  
  154. -- check the ink of the sprites under the cursor:
  155.  
  156. on checkSpriteIntersect me, activeSpr
  157.   if not dragUnderSprite then return
  158.   if not listP (hiliteList) then return
  159.   set c = count (hiliteList) 
  160.   repeat with i = c down to 1
  161.     set spr = getAt (hiliteList, i)
  162.     set currName = the name of member the memberNum of sprite spr of castLib the castLibNum of sprite spr
  163.     if sprite dragUnderSprite intersects spr and currName = "boundingRect" then
  164.       if not checkMatch (me, activeSpr, dragUnderSprite) then
  165.         return 1
  166.         exit repeat
  167.       end if
  168.     end if
  169.   end repeat
  170.   return 0
  171. end
  172.  
  173.  
  174.  
  175. on setUp me, hilites
  176.   set dragUnderSprite = 0
  177.   set dragTopSprite = 0
  178.   
  179.   repeat with i = 1 to numSprites (me)
  180.     if the scoreColor of sprite i = dragTopSpriteColor then 
  181.       set dragTopSprite = i
  182.       exit repeat
  183.     end if
  184.   end repeat
  185.   
  186.   repeat with i = 1 to numSprites (me)
  187.     if the scoreColor of sprite i = dragUnderSpriteColor then
  188.       if hiliteSprite then set dragUnderSprite = i
  189.       else set hiliteSprite = i
  190.     end if
  191.   end repeat
  192.   
  193.   -- makeField (me, dragTopField, dragTopSprite)
  194. end
  195.  
  196.  
  197. -- hilites must be a list of sprite numbers.
  198.  
  199. on initHilitePool me, hilites
  200.   if listP (hilites) then set hiliteList = hilites
  201. end